 :root {
            --primary-gradient: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            --secondary-gradient: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
            --accent-gradient: linear-gradient(135deg, #fc4a1a 0%, #f7b733 100%);
            --purple-gradient: linear-gradient(135deg, #8E2DE2 0%, #4A00E0 100%);
            --dark-purple: #1a0633;
            --light-purple: #4a148c;
            --nav-transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
        }
        
        /* Particle Background */
        #particles-js {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 0;
            opacity: 0.3;
        }
        
        /* Enhanced Header Styles */
        header {
            background: rgba(26, 6, 51, 0.9);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
            transition: var(--nav-transition);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            overflow: visible;
            padding: 15px 0;
        }
        
        header.sticky {
            padding: 10px 0;
            background: rgba(26, 6, 51, 0.98);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
        }
        
        .nav-logo {
            transition: var(--nav-transition);
            height: 70px;
        }
        
        header.sticky .nav-logo {
            height: 50px;
        }
        
        /* Main Navigation */
        #navbar {
            position: relative;
            z-index: 1001;
        }
        
        .left-side p {
            color: white;
            font-weight: 500;
            margin: 0;
            font-size: 1.1rem;
            transition: var(--nav-transition);
        }
        
        .left-side p span {
            display: block;
            font-size: 0.85rem;
            opacity: 0.8;
        }
        
        header.sticky .left-side p {
            font-size: 1rem;
        }
        
        header.sticky .left-side p span {
            font-size: 0.75rem;
        }
        
        /* Main Navigation Links */
        .main-nav {
            display: flex;
            justify-content: center;
            align-items: center;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        
        .main-nav li {
            margin: 0 10px;
            position: relative;
        }
        
        .main-nav li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 8px 15px;
            border-radius: 30px;
            transition: var(--nav-transition);
            display: inline-block;
        }
        
        .main-nav li a:hover,
        .main-nav li a.active {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }
        
        .main-nav li a.active {
            background: var(--primary-gradient);
            box-shadow: 0 4px 15px rgba(106, 17, 203, 0.4);
        }
        
        /* Social Icons */
        .social-icons.another {
            display: flex;
            align-items: center;
            justify-content: flex-end;
        }
        
        .social-icons.another a {
            color: white;
            background: rgba(255, 255, 255, 0.1);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 10px;
            transition: var(--nav-transition);
        }
        
        .social-icons.another a:hover {
            background: var(--primary-gradient);
            transform: translateY(-3px);
        }
        
        /* Mobile Navigation */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            margin-left: 15px;
        }
        
        /* Side Navigation */
        #mySidenav {
            height: 100%;
            width: 0;
            position: fixed;
            z-index: 1050;
            top: 0;
            right: 0;
            background: var(--dark-purple);
            overflow-x: hidden;
            transition: 0.5s;
            padding-top: 80px;
            box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
        }
        
        #mySidenav a {
            padding: 15px 25px;
            text-decoration: none;
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            display: block;
            transition: 0.3s;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        #mySidenav a:hover {
            color: white;
            background: rgba(106, 17, 203, 0.3);
        }
        
        #mySidenav a.active {
            color: white;
            background: var(--primary-gradient);
        }
        
        #mySidenav .closebtn {
            position: absolute;
            top: 20px;
            right: 25px;
            font-size: 2rem;
            color: white;
            border: none;
            background: none;
        }
        
        .border-img {
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            z-index: 2;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .main-nav {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .right-side {
                display: flex;
                align-items: center;
                justify-content: flex-end;
            }
        }
        
        @media (max-width: 768px) {
            .left-side p {
                font-size: 0.9rem;
            }
            
            .left-side p span {
                font-size: 0.7rem;
            }
            
            .nav-logo {
                height: 50px;
            }
            
            header.sticky .nav-logo {
                height: 40px;
            }
        }

        /* Navigation Fixes */
        #navbar {
            position: relative;
            z-index: 1001;
        }
        
        .sidenav {
            z-index: 1050;
        }
        
        .slide-menu {
            z-index: 1002;
            position: relative;
        }
        
        .slide-menu i {
            font-size: 24px;
            color: white;
            background: rgba(106, 17, 203, 0.7);
            padding: 10px;
            border-radius: 50%;
        }
        
        /* Quantum Card */
       .quantum-card {
            background: rgba(255,255,255,0.95);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.5s ease;
            overflow: hidden;
            border: none;
            position: relative;
            z-index: 1;
        }
        
        .quantum-card:before {
            content: '';
            position: absolute;
            top: -2px; left: -2px; right: -2px; bottom: -2px;
            background: linear-gradient(45deg, #6a11cb, #2575fc, #11998e, #38ef7d);
            background-size: 400%;
            z-index: -1;
            border-radius: 16px;
            opacity: 0;
            transition: 0.5s;
        }
        
        .quantum-card:hover:before {
            opacity: 1;
            animation: animate-card 8s linear infinite;
            filter: blur(10px);
        }
        
        @keyframes animate-card {
            0% { background-position: 0 0; }
            50% { background-position: 300% 0; }
            100% { background-position: 0 0; }
        }
        
        .quantum-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
        }
        
        .science-badge {
            background: var(--primary-gradient);
            color: white;
            font-weight: 700;
            padding: 5px 15px;
            border-radius: 50px;
            display: inline-block;
            margin-bottom: 15px;
            font-size: 14px;
            animation: pulse 2s infinite;
        }
        
        .section-title {
            position: relative;
            display: inline-block;
            font-family: 'Old Standard TT', serif;
            color: var(--dark-purple);
        }
        
        .section-title:after {
            content: "";
            position: absolute;
            width: 50%;
            height: 3px;
            background: var(--accent-gradient);
            bottom: -10px;
            left: 25%;
            border-radius: 3px;
        }
        
        .icon-circle {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            transition: all 0.3s ease;
            background: var(--primary-gradient);
            box-shadow: 0 5px 15px rgba(106, 17, 203, 0.3);
        }
        
        .icon-circle:hover {
            transform: rotate(20deg) scale(1.1);
        }
        
        /* Hero Section */
        .bhaiya-section {
            background: url('images/cosmic-bg.jpg') no-repeat center center;
            background-size: cover;
            position: relative;
            padding: 150px 0 100px;
            color: white;
            overflow: hidden;
        }
        
        .bhaiya-section:before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            z-index: 0;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
            animation: fadeInDown 1s both;
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
            animation: fadeInUp 1s both 0.3s;
        }
        
        .hero-buttons {
            animation: fadeIn 1s both 0.6s;
        }
        
        /* Mission Section */
        .mission-section {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        .mission-section:before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('images/quantum-pattern.png') repeat;
            opacity: 0.05;
            z-index: 0;
        }
        
        /* Testimonials */
        .testimonial-card {
            border-left: 4px solid #6a11cb;
            background: white;
            padding: 30px;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            position: relative;
            overflow: hidden;
        }
        
        .testimonial-card:before {
            content: "\201C";
            position: absolute;
            top: 10px;
            left: 10px;
            font-size: 80px;
            color: rgba(106, 17, 203, 0.1);
            font-family: serif;
            line-height: 1;
        }
        
        /* Energy Pulse Animation */
        .energy-pulse {
            position: relative;
        }
        
        .energy-pulse:after {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 70%);
            animation: pulse 3s infinite;
            border-radius: inherit;
            z-index: 0;
        }
        
        @keyframes pulse {
            0% { transform: scale(0.95); opacity: 0.8; }
            70% { transform: scale(1.05); opacity: 0; }
            100% { transform: scale(0.95); opacity: 0; }
        }
        
        /* Buttons */
        .cta-button {
            letter-spacing: 1px;
            font-weight: 600;
            border-radius: 50px;
            padding: 12px 30px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
            border: none;
        }
        
        .cta-button:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary-gradient);
            z-index: -1;
            transition: all 0.3s ease;
        }
        
        .cta-button:hover:before {
            background: var(--purple-gradient);
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        
        /* Process Steps */
        .process-steps {
            position: relative;
            padding-left: 40px;
        }
        
        .step {
            position: relative;
            margin-bottom: 1.5rem;
        }
        
        .step-number {
            position: absolute;
            left: -40px;
            top: 0;
            width: 30px;
            height: 30px;
            background: #764ba2;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            box-shadow: 0 3px 10px rgba(118, 75, 162, 0.3);
        }
        
        .step-content {
            padding-bottom: 15px;
            border-bottom: 1px dashed #eee;
        }
        
        .step:last-child .step-content {
            border-bottom: none;
        }

        /* About Section */
        .about-section {
            padding: 100px 0;
            background: white;
            position: relative;
            overflow: hidden;
        }
        
        .about-section:before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('images/mandala-pattern.png') repeat;
            opacity: 0.03;
            z-index: 0;
        }
        
        .about-image-container {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            transform: perspective(1000px) rotateY(0deg);
            transition: transform 0.5s ease;
            text-align: center;
        }
        
        .about-image-container:hover {
            transform: perspective(1000px) rotateY(10deg);
        }
        
        .about-image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(106,17,203,0.1) 0%, rgba(37,117,252,0.3) 100%);
        }
        
        /* Floating Elements */
        .floating {
            animation: floating 3s ease-in-out infinite;
        }
        
        @keyframes floating {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .about-image-container {
                margin-bottom: 30px;
            }
            
            /* Mobile navigation fixes */
            .slide-menu i {
                font-size: 20px;
                padding: 8px;
            }
            
            .sidenav {
                padding-top: 60px;
            }
        }
        
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }
        
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--light-purple);
            border-radius: 10px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: var(--dark-purple);
        }